home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / business / spreadsheets / easycalc / help / _if.help < prev    next >
Encoding:
Text File  |  1978-11-24  |  649 b   |  30 lines

  1. Spreadsheet Function @IF()
  2. Synopsis:
  3.  
  4. @IF(expression,true action,false action)
  5.  
  6. Description:
  7.  
  8. This  function  examines  the  expression.   If  the
  9. expression  is  true  (in a boolean sense), then the
  10. true  action  is evaluated, else the false action is
  11. evaluated.
  12.  
  13. Notes:
  14.  
  15. @IF  must be in a cell on its own.  You can not have
  16. 10+@IF(5<6,1,0)  or  simular.   However  you can use
  17. other functions inside @IF as normal.
  18.  
  19. Examples:
  20.  
  21. @IF(A1<5,"Reorder",A1)
  22.  
  23. If  the  contents  of  A1 were less than 5 then this
  24. would  display  in  the  cell,  "Reorder",  else the
  25. contents of A1 would appear.
  26. *
  27. Using Functions
  28. usefunc.help
  29. Maths Operators
  30. operators.help